home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / source / lib / powerd_lib.lha / PowerD_PPC / Bounds.ass < prev    next >
Text File  |  2001-01-24  |  196b  |  19 lines

  1.  
  2. # Bounds(r3:L,r4:L,r5:L)(LONG)
  3.  
  4.     .text
  5.     .global    _Bounds
  6.  
  7. _Bounds:
  8.     cmpw    r3,r5
  9.     ble    .next
  10.     mr    r3,r5
  11.     blr
  12. .next:    cmpw    r3,r4
  13.     bgelr
  14.     mr    r3,r4
  15.     blr
  16.  
  17.     .type    _Bounds,@function
  18.     .size    _Bounds,$-_Bounds
  19.